home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
lisp
/
elk-2_0.lha
/
elk-2.0
/
contrib
/
zelk
/
scm
/
mail.e
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-10-17
|
238 b
|
12 lines
;; send mail to myself, string <msg> is subject line
;; modified 22sept
(define (mail msg)
(let ((f (os-popen
(format #f "/usr/ucb/mail -s \"~a\" ~a"
msg (os-getenv "USER"))
"w")))
(newline f)
(os-pclose f)))